body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000000;
    direction: rtl;
}
.vipad{
    color: #00b478;
}
.topbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    color: white;
    padding: 10px;
}
.left-icons {
    display: flex;
    gap: 15px;
}
.img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.alert {
    background: #e3194a;
    color: #ffffff;
    text-align: center;
    padding: 10px;
}
.alert p {
    font-size: 12px;
    margin: 5px 0 0;
}
.card{
    background: #00b478;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #eeeeee;
    font-size: 20px;
}
.balance-stars {
    font-size: 22px;
    color: #eeeeee;
}
.card-buttons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px;
}
.card-buttons button {
    flex: 1 1 30%;
    min-width: 120px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #eee;
    cursor: pointer;
}
.card-buttons button:hover {
    background: #ddd;
}
.services {
    margin: 15px;
    color: #eeeeee;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.services div {
    background: #24282d;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner {
    padding: 10px;
}
.banner img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    display: block;
    margin: auto;
}
.bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
}
.bottom-nav div{
    text-align: center;
    font-size: 14px;
}
.bottom-nav i{
    display: block;
    font-size: 18px;
}